html {
    scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
    background-color: var(--black);
    color: var(--white);
}

body {
  position: relative;
  min-height: 100vh;
  background: transparent; 
}


body::before {
  content: "";
  position: fixed;        
  inset: 0;
  background-image: url(imgs/pexels-kartik-bhatare-2913616-4504471.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0); 
  z-index: -2;
   
  filter: blur(10px) brightness(0.75);
  will-change: filter;
  transform: scale(1.05);

  filter: brightness(1.50);
}


body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.329); 
  z-index: -1;
}

:root {
    --black: #363636;
    --soft-black: #151515;
    --gold: #2e885d;
    --gold-soft: #bfa24a;
    --white: #ffffff;
    --gray: #999;
}


.navbar {
    position: sticky;
    top: 0;
    background: var(--soft-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 10;
     background: rgba(99, 99, 99, 0.277);
  backdrop-filter: blur(6px);
}
logo {
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: var(--gold);
      display: flex;
  align-items: center;
}

.logo img {
  height: 70px;       
  width: auto;
  object-fit: contain;

  
  filter: brightness(1.1);
}

@media (max-width: 600px) {
  .logo img {
    height: 30px;
  }
}

.navbar nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: var(--gold);
}



.news-section {
  padding: 5rem 3rem;
}

.news-wrap {
  max-width: 1200px;
  margin: 0 auto;
}


.news-section::before {
  content: "";
  position: absolute;
  
}

.news-section {
  position: relative;
  overflow: hidden;
}


.news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(99, 99, 99, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 0;
}


.news-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(0,0,0,0.00) 45%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.news-wrap,
.news-wrap * {
  position: relative;
  z-index: 1;
}

.news-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2.2rem;
}

.news-kicker {
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 0.6rem 0;
}

.news-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin: 0 0 0.7rem 0;
}

.news-subtitle {
  margin: 0;
  color: rgba(255,255,255,0.86);
  max-width: 70ch;
  line-height: 1.6;
}

.news-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  background: rgba(21, 21, 21, 0.28);
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-btn:active { transform: translateY(1px); }

.news-btn--primary {
  background: rgba(46, 136, 93, 0.95);
  border-color: rgba(46, 136, 93, 0.35);
}

.news-btn--primary:hover {
  background: rgba(46, 136, 93, 1);
}

.news-btn--ghost {
  border-color: rgba(212, 175, 55, 0.18);
}

.news-btn--ghost:hover {
  border-color: rgba(46, 136, 93, 0.45);
}




.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}


.news-card {
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
  min-width: 0;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 136, 93, 0.35);
}


.news-card--glass,
.news-card--featured {
  background: rgba(21, 21, 21, 0.30);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}


.news-card--outline {
  background: rgba(0,0,0,0.10);
  backdrop-filter: blur(6px);
}

.news-card--featured {
  padding: 1.6rem;
  min-height: 220px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.news-date {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(46, 136, 93, 0.30);
  background: rgba(46, 136, 93, 0.20);
  color: rgba(255,255,255,0.92);
}

.news-pill--soft {
  border-color: rgba(212, 175, 55, 0.18);
  background: rgba(21, 21, 21, 0.20);
}


.news-card__media {
    width: 100%;
  max-width: 100%;
  height: 160px;      
  border-radius: 14px;
  overflow: hidden;   
  margin-bottom: 1rem;

  border: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(0,0,0,0.2);
  position: relative; 
}


.news-card__media img,
.news-card__media video,
.news-card__media iframe {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  display: block;
}

.news-card__title {
  margin: 0 0 0.65rem 0;
  font-size: 1.15rem;
  line-height: 1.25;
  padding-top: 0.5rem;
}

.news-card__text {
  margin: 0 0 1.1rem 0;
  color: rgba(255,255,255,0.83);
  line-height: 1.6;
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

.news-tag {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.news-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.news-link:hover {
  text-decoration: underline;
}


.news-bottom {
  margin-top: 2rem;
}

.news-bottom__glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.25rem;
  border-radius: 18px;
  background: rgba(99, 99, 99, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.14);
  backdrop-filter: blur(10px);
}

.news-bottom__title {
  margin: 0 0 0.25rem 0;
}

.news-bottom__text {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.news-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.news-input {
  min-width: 260px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(21, 21, 21, 0.28);
  color: var(--white);
  outline: none;
  backdrop-filter: blur(8px);
}

.news-input:focus {
  border-color: rgba(46, 136, 93, 0.45);
}


@media (max-width: 980px) {
  .news-section { padding: 4rem 1.25rem; }
  .news-header { flex-direction: column; align-items: flex-start; }
  .news-featured { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-bottom__glass { flex-direction: column; align-items: stretch; }
  .news-input { width: 100%; min-width: 0; }
}


/* ===============================
   FOOTER
================================ */

.footer {
  padding: 3rem 3rem 2rem;
  position: relative;
}


.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 1.5rem;

  border-radius: 20px;
  background: rgba(99, 99, 99, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.14);
  backdrop-filter: blur(10px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}




.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  margin: 0 0 0.6rem 0;
}

.footer-text {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}


.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-column h4 {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold);
}

/* ===============================
   FOOTER LOGO ROW
================================ */

.footer-logos {
  margin: 2rem 0 1.5rem;
  padding-top: 1.5rem;

  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1rem;

  align-items: center;
  justify-items: center;

  border-top: 1px solid rgba(212, 175, 55, 0.12);
}


.footer-logos img {
  max-height: 60px;
  width: auto;
  max-width: 100%;

  object-fit: contain;
  opacity: 0.85;

  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

@media (max-width: 1000px) {
  .footer-logos {
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .footer-logos {
    grid-template-columns: repeat(2, 1fr); 
  }
}


.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 1rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}


.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.4) 100%
  );
  pointer-events: none;
}


@media (max-width: 900px) {
  .footer {
    padding: 2.5rem 1.25rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
